home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000063_news@columbia.edu _Thu Oct 5 16:39:13 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id QAA05975
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 5 Oct 2000 16:39:11 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA23974
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 5 Oct 2000 16:39:10 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id QAA23204
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 5 Oct 2000 16:12:56 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: "Steve" <steve@baus-systems.com>
  13. Subject: Re: No Carrier
  14. Message-ID: <rg5D5.6722$Ly1.76783@news5.giganews.com>
  15. Organization: Giganews.Com - Premium News Outsourcing
  16. Date: Thu, 5 Oct 2000 13:18:32 -0700
  17. To: kermit.misc@columbia.edu
  18.  
  19. What I am looking for is a way for the server PC that is sitting in K95
  20. SERVER mode to not drop the phone line, which is causing a no carrier on the
  21. DOS client, but exit all the way out of K95 when it receives the FIN from
  22. the DOS client.  This will allow the server PC to process the file before it
  23. receives (or sends) additional files to the same client on the same
  24. communications session..
  25.  
  26. Steve
  27.  
  28. > : Is the FIN what is causing the no carrier?  If so that is going to be a
  29. > : problem as I doubt we can update the clients to change this.  If I am
  30. > : running the server command in 3.15 instead of K95 and send a FIN from
  31. the
  32. > : DOS client all the time and it does not drop the line.  Is this a change
  33. > : with K95?
  34. >
  35. > The difference is that in C-Kermit and Kermit 95 the SERVER command
  36. > is a scriptable command.  It terminates when applicable events occur
  37. > (carrier is lost with SET CARRIER-WATCH AUTO/ON; idle-timeouts; ...)
  38. > this allows you to write scripts that can properly manage multiple
  39. > phone calls.  The MS-DOS Kermit SERVER command can only be termianted
  40. > by a FINISH or a Ctrl-C.   There is no mechanism in the script language
  41. > to cancel the SERVER command in MS-DOS Kermit.
  42. >
  43. > The FINISH command when received from the client means "terminate SERVER
  44. > mode".  So if K95 receives that command when in SERVER mode the SERVER
  45. > will be terminated.  The same is true for MS-DOS Kermit.  If the SERVER
  46. > command is active and a FINISH is received the command will terminate.
  47. >
  48. > If you want Kermit 95 to remain in SERVER mode after receiving one
  49. > FINISH command you will have to use
  50. >
  51. >   SET MODEM TYPE ...
  52. >   SET PORT ...
  53. >   SET FLOW ...
  54. >   ANSWER
  55. >   SERVER
  56. >   SERVER
  57. >   EXIT
  58. >
  59. >                   Jeffrey Altman * Sr.Software Designer
  60. >                  The Kermit Project * Columbia University
  61. >                612 West 115th St * New York, NY * 10025 * USA
  62. >      http://www.kermit-project.org/ * kermit-support@kermit-project.org
  63.  
  64.